home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue30 / winmac / WINMAC.ZIP / SRECORDR.DPR < prev    next >
Encoding:
Text File  |  1996-03-19  |  206 b   |  14 lines

  1. {$I SRCOMOPT.INC}
  2. program srecordr;
  3.  
  4. uses
  5.   Forms,
  6.   Srmain in 'SRMAIN.PAS' {SuperRecorder};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TSuperRecorder, SuperRecorder);
  12.   Application.Run;
  13. end.
  14.